home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / WIN_PRO / VIEWS.ZIP;1 / CVDZIP.EXE / CVINTRVW.H < prev    next >
Encoding:
C/C++ Source or Header  |  1992-09-20  |  611 b   |  41 lines

  1. /*
  2.     cvintrvw.h
  3.  
  4.     Intro window
  5.     
  6.     C++/Views 2.0 Demo
  7.     Copyright (c) 1992, by Liant Software Corp.
  8.     ALL RIGHTS RESERVED.
  9.  
  10.     Revision History:
  11.     -----------------
  12. */
  13.  
  14. #ifndef cvintrvw_h
  15. #define cvintrvw_h
  16. #include "mdiview.h"
  17.  
  18. class DemoAppView;
  19.  
  20. class IntroView : public VMdiView {
  21. private:
  22.     DemoAppView *mainWin;
  23.  
  24. public:
  25.     IntroView(VFrame&, DemoAppView *);
  26.     IntroView();
  27.     ~IntroView();
  28.  
  29.     VClass *iam();
  30.     boolean free();
  31.  
  32.     boolean close(void);
  33.     boolean paint(void);
  34.     boolean erased(void);
  35.     boolean givenFocus(void);
  36. };
  37.  
  38. extern VClass *IntroViewCls;
  39. #endif /* cvintrvw_h */
  40.  
  41.